Within the library the required packages for the code to run correctly are imported.
If there's an import error check the following things:
Once you've checked this run this code in 4 simple steps:
In [ ]:
import cytometry_lib as cy
In [ ]:
fcs_dir = './fcs sample data/' # This is the directory of the .fcs files in this case
csv_dir = 'csv_files/' # This is where the converted data will be stored
merged_csv_dir = 'merged_data/' # This is where the final merged dataframe will be stored
merged_filename = 'data' # This is the name
In [ ]:
cy.fcs_to_csv(fcs_dir,csv_dir)
In [ ]:
cy.merge_dfs(csv_dir,merged_csv_dir,merged_filename)